home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / Caml Light 0.7 / examples / basics / README < prev    next >
Text File  |  1995-06-17  |  385b  |  15 lines

  1. Three all-time favorites: Fibonacci, Eratosthene's sieve, and the Unix
  2. "wc" utility, presented as standalone programs.
  3.  
  4. To compile: either "make", or, by hand:
  5.  
  6.     camlc -o fib fib.ml
  7.     camlc -o wc wc.ml
  8.     camlc -o sieve sieve.ml
  9.  
  10. To run:
  11.  
  12.     fib 10              # or some other number
  13.     wc fib.ml           # or some other files
  14.     sieve 1000          # or some other number
  15.